home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turnbull China Bikeride
/
Turnbull China Bikeride - Disc 2.iso
/
STUTTGART
/
FROMUTS
/
UNIXLIB37B
/
src
/
c
/
atexit
< prev
next >
Wrap
Text File
|
1990-10-01
|
317b
|
18 lines
#ifdef __STDC__
static char sccs_id[] = "@(#) atexit.c 2.1 "__DATE__" HJR";
#else
static char sccs_id[] = "@(#) atexit.c 2.1 26/9/90 HJR";
#endif
/* atexit.c (c) Copyright 1990 H.Rogers */
#include <stdlib.h>
int atexit(register void (*f)(void))
{
if (__axcnt >= 32) return(-1);
__ax[__axcnt++] = f;
return(0);
}